//04_Loop concept //parc_06 //wap to print table number #include #include void main() { int i,n; clrscr(); printf("Enter table number:"); scanf("%d",&n); i=10; while (i>=1) { printf("%d \n",i*n); i--; } getch(); } /* ------output------- Enter table number:2 2 4 6 8 10 12 14 16 18 20 */